1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "sandbox/linux/tests/scoped_temporary_file.h"
10 #include "base/logging.h"
11 #include "base/macros.h"
12 #include "base/posix/eintr_wrapper.h"
13 #include "build/build_config.h"
17 ScopedTemporaryFile::ScopedTemporaryFile() : fd_(-1) {
18 #if defined(OS_ANDROID)
19 static const char file_template
[] = "/data/local/tmp/ScopedTempFileXXXXXX";
21 static const char file_template
[] = "/tmp/ScopedTempFileXXXXXX";
22 #endif // defined(OS_ANDROID)
23 static_assert(sizeof(full_file_name_
) >= sizeof(file_template
),
24 "full_file_name is not large enough");
25 memcpy(full_file_name_
, file_template
, sizeof(file_template
));
26 fd_
= mkstemp(full_file_name_
);
30 ScopedTemporaryFile::~ScopedTemporaryFile() {
31 CHECK_EQ(0, unlink(full_file_name_
));
32 CHECK_EQ(0, IGNORE_EINTR(close(fd_
)));
35 } // namespace sandbox