| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "base/file_util.h" | 5 #include "base/file_util.h" |
| 6 | 6 |
| 7 #include <fcntl.h> | 7 #include <fcntl.h> |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/file_path.h" | 12 #include "base/file_path.h" |
| 13 #include "base/logging.h" | 13 #include "base/logging.h" |
| 14 #include "base/string_util.h" | 14 #include "base/string_util.h" |
| 15 | 15 |
| 16 namespace file_util { | 16 namespace file_util { |
| 17 | 17 |
| 18 bool GetTempDir(FilePath* path) { | 18 bool GetTempDir(FilePath* path) { |
| 19 const char* tmp = getenv("TMPDIR"); | 19 const char* tmp = getenv("TMPDIR"); |
| 20 if (tmp) | 20 if (tmp) |
| 21 *path = FilePath(tmp); | 21 *path = FilePath(tmp); |
| 22 else | 22 else |
| 23 *path = FilePath("/tmp"); | 23 *path = FilePath("/tmp"); |
| 24 return true; | 24 return true; |
| 25 } | 25 } |
| 26 | 26 |
| 27 bool GetShmemTempDir(FilePath* path) { |
| 28 *path = FilePath("/dev/shm"); |
| 29 return true; |
| 30 } |
| 31 |
| 27 bool CopyFile(const FilePath& from_path, const FilePath& to_path) { | 32 bool CopyFile(const FilePath& from_path, const FilePath& to_path) { |
| 28 int infile = open(from_path.value().c_str(), O_RDONLY); | 33 int infile = open(from_path.value().c_str(), O_RDONLY); |
| 29 if (infile < 0) | 34 if (infile < 0) |
| 30 return false; | 35 return false; |
| 31 | 36 |
| 32 int outfile = creat(to_path.value().c_str(), 0666); | 37 int outfile = creat(to_path.value().c_str(), 0666); |
| 33 if (outfile < 0) { | 38 if (outfile < 0) { |
| 34 close(infile); | 39 close(infile); |
| 35 return false; | 40 return false; |
| 36 } | 41 } |
| (...skipping 27 matching lines...) Expand all Loading... |
| 64 | 69 |
| 65 if (close(infile) < 0) | 70 if (close(infile) < 0) |
| 66 result = false; | 71 result = false; |
| 67 if (close(outfile) < 0) | 72 if (close(outfile) < 0) |
| 68 result = false; | 73 result = false; |
| 69 | 74 |
| 70 return result; | 75 return result; |
| 71 } | 76 } |
| 72 | 77 |
| 73 } // namespace file_util | 78 } // namespace file_util |
| OLD | NEW |