diff options
author | jvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-30 17:13:01 +0000 |
---|---|---|
committer | jvoung@google.com <jvoung@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-30 17:13:01 +0000 |
commit | 9a80715bd54cf030c89a9b0941551fe8bc028df9 (patch) | |
tree | 87289c9f90fcce68a8b6210255c4f3c6a927d727 /chrome/browser/nacl_host/pnacl_file_host.cc | |
parent | b1186477901883f22ae9e3d0c0266557735a062e (diff) | |
download | chromium_src-9a80715bd54cf030c89a9b0941551fe8bc028df9.zip chromium_src-9a80715bd54cf030c89a9b0941551fe8bc028df9.tar.gz chromium_src-9a80715bd54cf030c89a9b0941551fe8bc028df9.tar.bz2 |
Add an interface for nacl to create delete-on-close temp files,
to be used by pnacl for scratch files during compilation and linking.
This is in-lieu of the current use of pepper temp files, which are not
allowed in incognito mode, and are more cumbersome to clean up on surfaway.
Use this interface for the .o file in pnacl coordinator. The .nexe still uses
pepper temp files, since we haven't moved that over for caching yet.
We will clean that up later.
Also do some crude quota enforcement for these files, using the
existing reverse service interface.
BUG= http://code.google.com/p/nativeclient/issues/detail?id=2683
TEST= none -- pnacl compilation still works
Review URL: https://chromiumcodereview.appspot.com/10815080
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@148964 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/nacl_host/pnacl_file_host.cc')
-rw-r--r-- | chrome/browser/nacl_host/pnacl_file_host.cc | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/chrome/browser/nacl_host/pnacl_file_host.cc b/chrome/browser/nacl_host/pnacl_file_host.cc index a518668..fa0e5f0 100644 --- a/chrome/browser/nacl_host/pnacl_file_host.cc +++ b/chrome/browser/nacl_host/pnacl_file_host.cc @@ -76,6 +76,46 @@ void DoOpenPnaclFile( chrome_render_message_filter->Send(reply_msg); } +void DoCreateTemporaryFile( + ChromeRenderMessageFilter* chrome_render_message_filter, + IPC::Message* reply_msg) { + DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE)); + + FilePath file_path; + if (!file_util::CreateTemporaryFile(&file_path)) { + NotifyRendererOfError(chrome_render_message_filter, reply_msg); + return; + } + + base::PlatformFileError error; + base::PlatformFile file_handle = base::CreatePlatformFile( + file_path, + base::PLATFORM_FILE_CREATE_ALWAYS | base::PLATFORM_FILE_READ | + base::PLATFORM_FILE_WRITE | base::PLATFORM_FILE_TEMPORARY | + base::PLATFORM_FILE_DELETE_ON_CLOSE, + NULL, &error); + + if (error != base::PLATFORM_FILE_OK) { + NotifyRendererOfError(chrome_render_message_filter, reply_msg); + return; + } + + // Send the reply! + // Do any DuplicateHandle magic that is necessary first. + IPC::PlatformFileForTransit target_desc = + IPC::GetFileHandleForProcess(file_handle, + chrome_render_message_filter->peer_handle(), + true); + if (target_desc == IPC::InvalidPlatformFileForTransit()) { + NotifyRendererOfError(chrome_render_message_filter, reply_msg); + return; + } + + ChromeViewHostMsg_NaClCreateTemporaryFile::WriteReplyParams( + reply_msg, target_desc); + chrome_render_message_filter->Send(reply_msg); +} + } // namespace namespace pnacl_file_host { @@ -135,4 +175,16 @@ bool PnaclCanOpenFile(const std::string& filename, return true; } +void CreateTemporaryFile( + ChromeRenderMessageFilter* chrome_render_message_filter, + IPC::Message* reply_msg) { + if (!BrowserThread::PostTask( + BrowserThread::FILE, FROM_HERE, + base::Bind(&DoCreateTemporaryFile, + make_scoped_refptr(chrome_render_message_filter), + reply_msg))) { + NotifyRendererOfError(chrome_render_message_filter, reply_msg); + } +} + } // namespace pnacl_file_host |