-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDatabase.js
93 lines (82 loc) · 1.89 KB
/
Database.js
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
const util = require('util')
/**
* Utility class around querying browser databases
* @see https://chromedevtools.github.io/devtools-protocol/tot/Database
* @since chrome-remote-interface-extra
*/
class Database {
/**
* @param {DatabaseManager} manager
* @param {CDPDatabase} database
*/
constructor (manager, database) {
/**
* @type {DatabaseManager}
* @private
*/
this._manager = manager
/**
* @type {CDPDatabase}
* @private
*/
this._database = database
}
/**
* @return {string}
*/
id () {
return this._database.id
}
/**
* @return {string}
*/
name () {
return this._database.name
}
/**
* @return {string}
*/
version () {
return this._database.version
}
/**
* @return {Promise<Array<string>>}
* @see https://chromedevtools.github.io/devtools-protocol/tot/Database#method-disable
*/
async getDatabaseTableNames () {
return this._manager.getDatabaseTableNames(this.id())
}
/**
* @param {string} query - The SQL query
* @return {Promise<SQLQueryResults>}
* @see https://chromedevtools.github.io/devtools-protocol/tot/Database#method-executeSQL
*/
executeSQL (query) {
return this._manager.executeSQL(this.id(), query)
}
/**
* @return {string}
*/
toString () {
return util.inspect(this, { depth: null })
}
/**
* @return {CDPDatabase}
*/
toJSON () {
return this._database
}
/** @ignore */
// eslint-disable-next-line space-before-function-paren
[util.inspect.custom](depth, options) {
if (depth < 0) {
return options.stylize('[Database]', 'special')
}
const newOptions = Object.assign({}, options, {
depth: options.depth == null ? null : options.depth - 1
})
const inner = util.inspect(this._database, newOptions)
return `${options.stylize('Database', 'special')} ${inner}`
}
}
module.exports = Database