summaryrefslogtreecommitdiff
path: root/chromium/sql/mojo/mojo_vfs.h
blob: dc835938eff9b07e617e644a8fd0bc7bcd3e2856 (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
38
39
40
41
42
43
44
45
// Copyright 2015 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 SQL_MOJO_MOJO_VFS_H_
#define SQL_MOJO_MOJO_VFS_H_

#include "base/macros.h"
#include "components/filesystem/public/interfaces/directory.mojom.h"

typedef struct sqlite3_vfs sqlite3_vfs;

namespace sql {

// Changes the default sqlite3 vfs to a vfs that uses proxies calls to the
// mojo:filesystem service. Instantiating this object transparently changes how
// the entire //sql/ subsystem works in the process of the caller; all paths
// are treated as relative to |directory|.
class ScopedMojoFilesystemVFS {
 public:
  explicit ScopedMojoFilesystemVFS(filesystem::DirectoryPtr directory);
  ~ScopedMojoFilesystemVFS();

  // Returns the directory of the current VFS.
  filesystem::DirectoryPtr& GetDirectory();

 private:
  friend sqlite3_vfs* GetParentVFS(sqlite3_vfs* mojo_vfs);
  friend filesystem::DirectoryPtr& GetRootDirectory(sqlite3_vfs* mojo_vfs);

  // The default vfs at the time MojoVFS was installed. We use the to pass
  // through things like randomness requests and per-platform sleep calls.
  sqlite3_vfs* parent_;

  // When we initialize the subsystem, we are given a filesystem::Directory
  // object, which is the root directory of a mojo:filesystem. All access to
  // various files are specified from this root directory.
  filesystem::DirectoryPtr root_directory_;

  DISALLOW_COPY_AND_ASSIGN(ScopedMojoFilesystemVFS);
};

}  // namespace sql

#endif  // SQL_MOJO_MOJO_VFS_H_