summaryrefslogtreecommitdiffstats
path: root/base/file_util_linux.cc
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-21 21:11:36 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-21 21:11:36 +0000
commit84cb19128979726fe4369029c8c09a7f434fe9a2 (patch)
tree29ebea7ea02bb9537316a6242d50bb835dec592a /base/file_util_linux.cc
parent765c16207e8c10ed3a0f79db0ecdbd89bcf0c1a6 (diff)
downloadchromium_src-84cb19128979726fe4369029c8c09a7f434fe9a2.zip
chromium_src-84cb19128979726fe4369029c8c09a7f434fe9a2.tar.gz
chromium_src-84cb19128979726fe4369029c8c09a7f434fe9a2.tar.bz2
bsd: move POSIXy functions back into file_util_posix
This is so the other non-Mac platforms don't need to build file_util_linux. Review URL: http://codereview.chromium.org/1732003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45242 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/file_util_linux.cc')
-rw-r--r--base/file_util_linux.cc78
1 files changed, 0 insertions, 78 deletions
diff --git a/base/file_util_linux.cc b/base/file_util_linux.cc
deleted file mode 100644
index 0f9795e..0000000
--- a/base/file_util_linux.cc
+++ /dev/null
@@ -1,78 +0,0 @@
-// Copyright (c) 2006-2008 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.
-
-#include "base/file_util.h"
-
-#include <fcntl.h>
-
-#include <string>
-#include <vector>
-
-#include "base/eintr_wrapper.h"
-#include "base/file_path.h"
-#include "base/string_util.h"
-
-namespace file_util {
-
-bool GetTempDir(FilePath* path) {
- const char* tmp = getenv("TMPDIR");
- if (tmp)
- *path = FilePath(tmp);
- else
- *path = FilePath("/tmp");
- return true;
-}
-
-bool GetShmemTempDir(FilePath* path) {
- *path = FilePath("/dev/shm");
- return true;
-}
-
-bool CopyFile(const FilePath& from_path, const FilePath& to_path) {
- int infile = open(from_path.value().c_str(), O_RDONLY);
- if (infile < 0)
- return false;
-
- int outfile = creat(to_path.value().c_str(), 0666);
- if (outfile < 0) {
- close(infile);
- return false;
- }
-
- const size_t kBufferSize = 32768;
- std::vector<char> buffer(kBufferSize);
- bool result = true;
-
- while (result) {
- ssize_t bytes_read = HANDLE_EINTR(read(infile, &buffer[0], buffer.size()));
- if (bytes_read < 0) {
- result = false;
- break;
- }
- if (bytes_read == 0)
- break;
- // Allow for partial writes
- ssize_t bytes_written_per_read = 0;
- do {
- ssize_t bytes_written_partial = HANDLE_EINTR(write(
- outfile,
- &buffer[bytes_written_per_read],
- bytes_read - bytes_written_per_read));
- if (bytes_written_partial < 0) {
- result = false;
- break;
- }
- bytes_written_per_read += bytes_written_partial;
- } while (bytes_written_per_read < bytes_read);
- }
-
- if (HANDLE_EINTR(close(infile)) < 0)
- result = false;
- if (HANDLE_EINTR(close(outfile)) < 0)
- result = false;
-
- return result;
-}
-
-} // namespace file_util