summaryrefslogtreecommitdiffstats
path: root/chromium/base/android/important_file_writer_android.cc
blob: 4ccc0885a08f89513194c7c083e910b46594095c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include <string>

#include "base/android/jni_array.h"
#include "base/android/jni_string.h"
#include "base/base_jni_headers/ImportantFileWriterAndroid_jni.h"
#include "base/files/important_file_writer.h"
#include "base/threading/thread_restrictions.h"

namespace base {
namespace android {

class ScopedAllowBlockingForImportantFileWriter
    : public base::ScopedAllowBlocking {};

static jboolean JNI_ImportantFileWriterAndroid_WriteFileAtomically(
    JNIEnv* env,
    const JavaParamRef<jstring>& file_name,
    const JavaParamRef<jbyteArray>& data) {
  // This is called on the UI thread during shutdown to save tab data, so
  // needs to enable IO.
  ScopedAllowBlockingForImportantFileWriter allow_blocking;
  std::string native_file_name;
  base::android::ConvertJavaStringToUTF8(env, file_name, &native_file_name);
  base::FilePath path(native_file_name);
  std::string native_data_string;
  JavaByteArrayToString(env, data, &native_data_string);
  bool result = base::ImportantFileWriter::WriteFileAtomically(
      path, native_data_string);
  return result;
}

}  // namespace android
}  // namespace base