mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
libcef: Update due to underlying chromium changes.
- WebKit API upstreamed requiring header include path changes. - AppCache, Database and ResourceLoader updates. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@65 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@ -6,33 +6,76 @@
|
||||
#define _BROWSER_DATABASE_SYSTEM_H
|
||||
|
||||
#include "base/file_path.h"
|
||||
#include "base/hash_tables.h"
|
||||
#include "base/lock.h"
|
||||
#include "base/platform_file.h"
|
||||
#include "base/ref_counted.h"
|
||||
#include "base/scoped_temp_dir.h"
|
||||
#include "base/string16.h"
|
||||
#include "third_party/WebKit/WebKit/chromium/public/WebDatabaseObserver.h"
|
||||
#include "webkit/database/database_connections.h"
|
||||
#include "webkit/database/database_tracker.h"
|
||||
|
||||
class BrowserDatabaseSystem {
|
||||
class BrowserDatabaseSystem : public webkit_database::DatabaseTracker::Observer,
|
||||
public WebKit::WebDatabaseObserver {
|
||||
public:
|
||||
static BrowserDatabaseSystem* GetInstance();
|
||||
BrowserDatabaseSystem();
|
||||
~BrowserDatabaseSystem();
|
||||
|
||||
base::PlatformFile OpenFile(
|
||||
const FilePath& file_name, int desired_flags,
|
||||
base::PlatformFile* dir_handle);
|
||||
int DeleteFile(const FilePath& file_name, bool sync_dir);
|
||||
long GetFileAttributes(const FilePath& file_name);
|
||||
long long GetFileSize(const FilePath& file_name);
|
||||
// VFS functions
|
||||
base::PlatformFile OpenFile(const string16& vfs_file_name,
|
||||
int desired_flags,
|
||||
base::PlatformFile* dir_handle);
|
||||
int DeleteFile(const string16& vfs_file_name, bool sync_dir);
|
||||
long GetFileAttributes(const string16& vfs_file_name);
|
||||
long long GetFileSize(const string16& vfs_file_name);
|
||||
|
||||
// database tracker functions
|
||||
void DatabaseOpened(const string16& origin_identifier,
|
||||
const string16& database_name,
|
||||
const string16& description,
|
||||
int64 estimated_size);
|
||||
void DatabaseModified(const string16& origin_identifier,
|
||||
const string16& database_name);
|
||||
void DatabaseClosed(const string16& origin_identifier,
|
||||
const string16& database_name);
|
||||
|
||||
// DatabaseTracker::Observer implementation
|
||||
virtual void OnDatabaseSizeChanged(const string16& origin_identifier,
|
||||
const string16& database_name,
|
||||
int64 database_size,
|
||||
int64 space_available);
|
||||
|
||||
// WebDatabaseObserver implementation
|
||||
virtual void databaseOpened(const WebKit::WebDatabase& database);
|
||||
virtual void databaseModified(const WebKit::WebDatabase& database);
|
||||
virtual void databaseClosed(const WebKit::WebDatabase& database);
|
||||
|
||||
void ClearAllDatabases();
|
||||
|
||||
private:
|
||||
FilePath GetDBDir();
|
||||
FilePath GetDBFileFullPath(const FilePath& file_name);
|
||||
// The calls that come from the database tracker run on the main thread.
|
||||
// Therefore, we can only call DatabaseUtil::GetFullFilePathForVfsFile()
|
||||
// on the main thread. However, the VFS calls run on the DB thread and
|
||||
// they need to crack VFS file paths. To resolve this problem, we store
|
||||
// a map of vfs_file_names to file_paths. The map is updated on the main
|
||||
// thread on each DatabaseOpened() call that comes from the database
|
||||
// tracker, and is read on the DB thread by each VFS call.
|
||||
void SetFullFilePathsForVfsFile(const string16& origin_identifier,
|
||||
const string16& database_name);
|
||||
FilePath GetFullFilePathForVfsFile(const string16& vfs_file_name);
|
||||
|
||||
static BrowserDatabaseSystem* instance_;
|
||||
|
||||
ScopedTempDir temp_dir_;
|
||||
|
||||
// HACK: see OpenFile's implementation
|
||||
base::PlatformFile hack_main_db_handle_;
|
||||
scoped_refptr<webkit_database::DatabaseTracker> db_tracker_;
|
||||
|
||||
Lock file_names_lock_;
|
||||
base::hash_map<string16, FilePath> file_names_;
|
||||
|
||||
webkit_database::DatabaseConnections database_connections_;
|
||||
};
|
||||
|
||||
#endif // _BROWSER_DATABASE_SYSTEM_H
|
||||
|
Reference in New Issue
Block a user