Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: ipc/ipc_message_utils.cc

Issue 2846293002: Make PlatformFileForTransit its own class on Windows. (Closed)
Patch Set: Use nullptr instead of INVALID_HANDLE_VALUE. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ipc/ipc_message_utils.h" 5 #include "ipc/ipc_message_utils.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 17 matching lines...) Expand all
28 #include "ipc/ipc_platform_file_attachment_posix.h" 28 #include "ipc/ipc_platform_file_attachment_posix.h"
29 #endif 29 #endif
30 30
31 #if defined(OS_MACOSX) && !defined(OS_IOS) 31 #if defined(OS_MACOSX) && !defined(OS_IOS)
32 #include "ipc/mach_port_mac.h" 32 #include "ipc/mach_port_mac.h"
33 #endif 33 #endif
34 34
35 #if defined(OS_WIN) 35 #if defined(OS_WIN)
36 #include <tchar.h> 36 #include <tchar.h>
37 #include "ipc/handle_win.h" 37 #include "ipc/handle_win.h"
38 #include "ipc/ipc_platform_file.h"
38 #endif 39 #endif
39 40
40 namespace IPC { 41 namespace IPC {
41 42
42 namespace { 43 namespace {
43 44
44 const int kMaxRecursionDepth = 200; 45 const int kMaxRecursionDepth = 200;
45 46
46 template<typename CharType> 47 template<typename CharType>
47 void LogBytes(const std::vector<CharType>& data, std::string* out) { 48 void LogBytes(const std::vector<CharType>& data, std::string* out) {
(...skipping 787 matching lines...) Expand 10 before | Expand all | Expand 10 after
835 void ParamTraits<base::SharedMemoryHandle>::Log(const param_type& p, 836 void ParamTraits<base::SharedMemoryHandle>::Log(const param_type& p,
836 std::string* l) { 837 std::string* l) {
837 if (p.OwnershipPassesToIPC()) { 838 if (p.OwnershipPassesToIPC()) {
838 l->append(base::StringPrintf("FD(%d auto-close)", p.GetHandle())); 839 l->append(base::StringPrintf("FD(%d auto-close)", p.GetHandle()));
839 } else { 840 } else {
840 l->append(base::StringPrintf("FD(%d)", p.GetHandle())); 841 l->append(base::StringPrintf("FD(%d)", p.GetHandle()));
841 } 842 }
842 } 843 }
843 #endif // defined(OS_MACOSX) && !defined(OS_IOS) 844 #endif // defined(OS_MACOSX) && !defined(OS_IOS)
844 845
846 #if defined(OS_WIN)
847 void ParamTraits<PlatformFileForTransit>::GetSize(base::PickleSizer* s,
848 const param_type& p) {
849 GetParamSize(s, p.GetHandle());
850 }
851
852 void ParamTraits<PlatformFileForTransit>::Write(base::Pickle* m,
853 const param_type& p) {
854 HandleWin handle_win(p.GetHandle(), HandleWin::DUPLICATE);
855 ParamTraits<HandleWin>::Write(m, handle_win);
856 ::CloseHandle(p.GetHandle());
857 }
858
859 bool ParamTraits<PlatformFileForTransit>::Read(const base::Pickle* m,
860 base::PickleIterator* iter,
861 param_type* r) {
862 HandleWin handle_win;
863 if (!ParamTraits<HandleWin>::Read(m, iter, &handle_win))
864 return false;
865 *r = PlatformFileForTransit(handle_win.get_handle());
866 return true;
867 }
868
869 void ParamTraits<PlatformFileForTransit>::Log(const param_type& p,
870 std::string* l) {
871 LogParam(p.GetHandle(), l);
872 }
873 #endif // defined(OS_WIN)
874
845 void ParamTraits<base::FilePath>::GetSize(base::PickleSizer* sizer, 875 void ParamTraits<base::FilePath>::GetSize(base::PickleSizer* sizer,
846 const param_type& p) { 876 const param_type& p) {
847 p.GetSizeForPickle(sizer); 877 p.GetSizeForPickle(sizer);
848 } 878 }
849 879
850 void ParamTraits<base::FilePath>::Write(base::Pickle* m, const param_type& p) { 880 void ParamTraits<base::FilePath>::Write(base::Pickle* m, const param_type& p) {
851 p.WriteToPickle(m); 881 p.WriteToPickle(m);
852 } 882 }
853 883
854 bool ParamTraits<base::FilePath>::Read(const base::Pickle* m, 884 bool ParamTraits<base::FilePath>::Read(const base::Pickle* m,
(...skipping 433 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 return result; 1318 return result;
1289 } 1319 }
1290 1320
1291 void ParamTraits<MSG>::Log(const param_type& p, std::string* l) { 1321 void ParamTraits<MSG>::Log(const param_type& p, std::string* l) {
1292 l->append("<MSG>"); 1322 l->append("<MSG>");
1293 } 1323 }
1294 1324
1295 #endif // OS_WIN 1325 #endif // OS_WIN
1296 1326
1297 } // namespace IPC 1327 } // namespace IPC
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698