blob: 40bfa0da189b59cecf9b13d69018e6baffc3f334 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef IPC_IPC_PLATFORM_FILE_H_
#define IPC_IPC_PLATFORM_FILE_H_
#include "base/basictypes.h"
#include "base/files/file.h"
#include "base/process/process.h"
#include "ipc/ipc_export.h"
#if defined(OS_POSIX)
#include "base/file_descriptor_posix.h"
#endif
namespace IPC {
#if defined(OS_WIN)
typedef base::PlatformFile PlatformFileForTransit;
#elif defined(OS_POSIX)
typedef base::FileDescriptor PlatformFileForTransit;
#endif
inline PlatformFileForTransit InvalidPlatformFileForTransit() {
#if defined(OS_WIN)
return INVALID_HANDLE_VALUE;
#elif defined(OS_POSIX)
return base::FileDescriptor();
#endif
}
inline base::PlatformFile PlatformFileForTransitToPlatformFile(
const PlatformFileForTransit& transit) {
#if defined(OS_WIN)
return transit;
#elif defined(OS_POSIX)
return transit.fd;
#endif
}
inline base::File PlatformFileForTransitToFile(
const PlatformFileForTransit& transit) {
#if defined(OS_WIN)
return base::File(transit);
#elif defined(OS_POSIX)
return base::File(transit.fd);
#endif
}
// Returns a file handle equivalent to |file| that can be used in |process|.
IPC_EXPORT PlatformFileForTransit GetFileHandleForProcess(
base::PlatformFile file,
base::ProcessHandle process,
bool close_source_handle);
// Returns a file handle equivalent to |file| that can be used in |process|.
// Note that this function takes ownership of |file|.
IPC_EXPORT PlatformFileForTransit TakeFileHandleForProcess(
base::File file,
base::ProcessHandle process);
} // namespace IPC
#endif // IPC_IPC_PLATFORM_FILE_H_
|