2019-02-12 21:31:52 +01:00
|
|
|
// Copyright 2019 The Chromium Embedded Framework Authors. Portions copyright
|
|
|
|
// 2013 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.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_DEVTOOLS_DEVTOOLS_FILE_MANAGER_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_DEVTOOLS_DEVTOOLS_FILE_MANAGER_H_
|
|
|
|
|
2023-01-30 18:43:54 +01:00
|
|
|
#include "base/functional/callback_forward.h"
|
2019-02-12 21:31:52 +01:00
|
|
|
#include "base/memory/weak_ptr.h"
|
|
|
|
|
2019-02-14 23:08:16 +01:00
|
|
|
#include <map>
|
2019-02-12 21:31:52 +01:00
|
|
|
#include <string>
|
|
|
|
|
|
|
|
namespace base {
|
|
|
|
class FilePath;
|
|
|
|
class SequencedTaskRunner;
|
|
|
|
class Value;
|
|
|
|
} // namespace base
|
|
|
|
|
2020-09-22 21:54:02 +02:00
|
|
|
class AlloyBrowserHostImpl;
|
2019-02-12 21:31:52 +01:00
|
|
|
class PrefService;
|
|
|
|
|
|
|
|
// File management helper for DevTools.
|
|
|
|
// Based on chrome/browser/devtools/devtools_ui_bindings.cc and
|
|
|
|
// chrome/browser/devtools/devtools_file_helper.cc.
|
|
|
|
class CefDevToolsFileManager {
|
|
|
|
public:
|
2020-09-22 21:54:02 +02:00
|
|
|
CefDevToolsFileManager(AlloyBrowserHostImpl* browser_impl,
|
|
|
|
PrefService* prefs);
|
2019-02-12 21:31:52 +01:00
|
|
|
|
2021-12-06 21:40:25 +01:00
|
|
|
CefDevToolsFileManager(const CefDevToolsFileManager&) = delete;
|
|
|
|
CefDevToolsFileManager& operator=(const CefDevToolsFileManager&) = delete;
|
|
|
|
|
2019-02-12 21:31:52 +01:00
|
|
|
void SaveToFile(const std::string& url,
|
|
|
|
const std::string& content,
|
|
|
|
bool save_as);
|
|
|
|
void AppendToFile(const std::string& url, const std::string& content);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// SaveToFile implementation:
|
2021-12-06 21:40:25 +01:00
|
|
|
using SaveCallback = base::OnceCallback<void(const std::string&)>;
|
|
|
|
using CancelCallback = base::OnceCallback<void()>;
|
2019-02-12 21:31:52 +01:00
|
|
|
void Save(const std::string& url,
|
|
|
|
const std::string& content,
|
|
|
|
bool save_as,
|
2021-06-04 03:34:56 +02:00
|
|
|
SaveCallback saveCallback,
|
|
|
|
CancelCallback cancelCallback);
|
2019-02-12 21:31:52 +01:00
|
|
|
void SaveAsDialogDismissed(const std::string& url,
|
|
|
|
const std::string& content,
|
2021-06-04 03:34:56 +02:00
|
|
|
SaveCallback saveCallback,
|
|
|
|
CancelCallback cancelCallback,
|
2019-02-12 21:31:52 +01:00
|
|
|
const std::vector<base::FilePath>& file_paths);
|
|
|
|
void SaveAsFileSelected(const std::string& url,
|
|
|
|
const std::string& content,
|
2021-06-04 03:34:56 +02:00
|
|
|
SaveCallback callback,
|
2019-02-12 21:31:52 +01:00
|
|
|
const base::FilePath& path);
|
|
|
|
void FileSavedAs(const std::string& url, const std::string& file_system_path);
|
|
|
|
void CanceledFileSaveAs(const std::string& url);
|
|
|
|
|
|
|
|
// AppendToFile implementation:
|
2021-12-06 21:40:25 +01:00
|
|
|
using AppendCallback = base::OnceCallback<void(void)>;
|
2019-02-12 21:31:52 +01:00
|
|
|
void Append(const std::string& url,
|
|
|
|
const std::string& content,
|
2021-06-04 03:34:56 +02:00
|
|
|
AppendCallback callback);
|
2019-02-12 21:31:52 +01:00
|
|
|
void AppendedTo(const std::string& url);
|
|
|
|
|
|
|
|
void CallClientFunction(const std::string& function_name,
|
|
|
|
const base::Value* arg1,
|
|
|
|
const base::Value* arg2,
|
|
|
|
const base::Value* arg3);
|
|
|
|
|
|
|
|
// Guaranteed to outlive this object.
|
2020-09-22 21:54:02 +02:00
|
|
|
AlloyBrowserHostImpl* browser_impl_;
|
2019-02-12 21:31:52 +01:00
|
|
|
PrefService* prefs_;
|
|
|
|
|
2021-12-06 21:40:25 +01:00
|
|
|
using PathsMap = std::map<std::string, base::FilePath>;
|
2019-02-12 21:31:52 +01:00
|
|
|
PathsMap saved_files_;
|
|
|
|
scoped_refptr<base::SequencedTaskRunner> file_task_runner_;
|
|
|
|
base::WeakPtrFactory<CefDevToolsFileManager> weak_factory_;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_DEVTOOLS_DEVTOOLS_FILE_MANAGER_H_
|