b1d1ac6524
* fix: change ASAR archive cache to per-process to fix leak (#29292) * chore: address code review comments * chore: tighten up thread-safety * chore: better address code review comments * chore: more code review changes
36 lines
971 B
C++
36 lines
971 B
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_COMMON_ASAR_ASAR_UTIL_H_
|
|
#define SHELL_COMMON_ASAR_ASAR_UTIL_H_
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace base {
|
|
class FilePath;
|
|
}
|
|
|
|
namespace asar {
|
|
|
|
class Archive;
|
|
|
|
// Gets or creates and caches a new Archive from the path.
|
|
std::shared_ptr<Archive> GetOrCreateAsarArchive(const base::FilePath& path);
|
|
|
|
// Destroy cached Archive objects.
|
|
void ClearArchives();
|
|
|
|
// Separates the path to Archive out.
|
|
bool GetAsarArchivePath(const base::FilePath& full_path,
|
|
base::FilePath* asar_path,
|
|
base::FilePath* relative_path,
|
|
bool allow_root = false);
|
|
|
|
// Same with base::ReadFileToString but supports asar Archive.
|
|
bool ReadFileToString(const base::FilePath& path, std::string* contents);
|
|
|
|
} // namespace asar
|
|
|
|
#endif // SHELL_COMMON_ASAR_ASAR_UTIL_H_
|