|
| 1 | +require 'promise' |
| 2 | +require 'ostruct' |
| 3 | + |
| 4 | +module Browser; module Database |
| 5 | + |
| 6 | +class SQL |
| 7 | + # Check if the browser supports WebSQL. |
| 8 | + def self.supported? |
| 9 | + Browser.supports? 'WebSQL' |
| 10 | + end |
| 11 | + |
| 12 | + class Error < StandardError |
| 13 | + def self.new(error) |
| 14 | + return super if self != Error |
| 15 | + |
| 16 | + [Unknown, Database, Version, TooLarge, Quota, Syntax, Constraint, Timeout] \ |
| 17 | + [`error.code`].new(`error.message`) |
| 18 | + end |
| 19 | + |
| 20 | + Unknown = Class.new(self) |
| 21 | + Database = Class.new(self) |
| 22 | + Version = Class.new(self) |
| 23 | + TooLarge = Class.new(self) |
| 24 | + Quota = Class.new(self) |
| 25 | + Syntax = Class.new(self) |
| 26 | + Constraint = Class.new(self) |
| 27 | + Timeout = Class.new(self) |
| 28 | + end |
| 29 | + |
| 30 | + include Native |
| 31 | + |
| 32 | + # @return [String] the name of the database |
| 33 | + attr_reader :name |
| 34 | + |
| 35 | + # @return [String] the description for the database |
| 36 | + attr_reader :description |
| 37 | + |
| 38 | + # @return [Integer] the size constraint in bytes |
| 39 | + attr_reader :size |
| 40 | + |
| 41 | + # Open a database with the given name and options. |
| 42 | + # |
| 43 | + # @param name [String] the name for the database |
| 44 | + # @param options [Hash] options to open the database |
| 45 | + # |
| 46 | + # @option options [String] :description the description for the database |
| 47 | + # @option options [String] :version ('') the expected version of the database |
| 48 | + # @option options [Integer] :size (5 * 1024 * 1024) the size constraint in bytes |
| 49 | + def initialize(name, options = {}) |
| 50 | + @name = name |
| 51 | + @description = options[:description] || name |
| 52 | + @version = options[:version] || '' |
| 53 | + @size = options[:size] || 5 * 1024 * 1024 |
| 54 | + |
| 55 | + super(`window.openDatabase(#{name}, #{@version}, #{@description}, #{@size})`) |
| 56 | + end |
| 57 | + |
| 58 | + # @overload version() |
| 59 | + # |
| 60 | + # Get the version of the database. |
| 61 | + # |
| 62 | + # @return [String] |
| 63 | + # |
| 64 | + # @overload version(from, to, &block) |
| 65 | + # |
| 66 | + # Migrate the database to a new version. |
| 67 | + # |
| 68 | + # @param from [String] the version you're migrating from |
| 69 | + # @param to [String] the version you're migrating to |
| 70 | + # |
| 71 | + # @yieldparam transaction [Transaction] the transaction to work with |
| 72 | + def version(from = nil, to = nil, &block) |
| 73 | + return `#@native.version` unless block |
| 74 | + |
| 75 | + `#@native.changeVersion(#{from}, #{to}, |
| 76 | + #{-> t { block.call(Transaction.new(self, t)) }})` |
| 77 | + end |
| 78 | + |
| 79 | + # Start a transaction on the database. |
| 80 | + # |
| 81 | + # @yieldparam transaction [Transaction] the transaction to work on |
| 82 | + def transaction(&block) |
| 83 | + raise ArgumentError, 'no block given' unless block |
| 84 | + |
| 85 | + `#@native.transaction(#{-> t { block.call(Transaction.new(self, t)) }})` |
| 86 | + end |
| 87 | + |
| 88 | + # Allows you to make changes to the database or read data from it. |
| 89 | + class Transaction |
| 90 | + include Native |
| 91 | + |
| 92 | + # @return [Database] the database the transaction has been created from |
| 93 | + attr_reader :database |
| 94 | + |
| 95 | + # @private |
| 96 | + def initialize(database, transaction) |
| 97 | + @database = database |
| 98 | + |
| 99 | + super(transaction) |
| 100 | + end |
| 101 | + |
| 102 | + # Query the database. |
| 103 | + # |
| 104 | + # @param query [String] the SQL query to send |
| 105 | + # @param parameters [Array] optional bind parameters for the query |
| 106 | + # |
| 107 | + # @return [Promise] |
| 108 | + def query(query, *parameters) |
| 109 | + promise = Promise.new |
| 110 | + |
| 111 | + `#@native.executeSql(#{query}, #{parameters}, |
| 112 | + #{-> _, r { promise.resolve(Result.new(self, r)) }}, |
| 113 | + #{-> _, e { promise.reject(Error.new(e)) }})` |
| 114 | + |
| 115 | + promise |
| 116 | + end |
| 117 | + end |
| 118 | + |
| 119 | + # Represents a row. |
| 120 | + class Row < OpenStruct |
| 121 | + # @private |
| 122 | + def initialize(row) |
| 123 | + super(Hash.new(row)) |
| 124 | + end |
| 125 | + |
| 126 | + def inspect |
| 127 | + "#<SQL::Row: #{Hash.new(@native).inspect}>" |
| 128 | + end |
| 129 | + end |
| 130 | + |
| 131 | + class Result |
| 132 | + include Native |
| 133 | + |
| 134 | + # @return [Transaction] the transaction the result came from |
| 135 | + attr_reader :transaction |
| 136 | + |
| 137 | + # @return [SQL] the database the result came from |
| 138 | + attr_reader :database |
| 139 | + |
| 140 | + # @private |
| 141 | + def initialize(transaction, result) |
| 142 | + @transaction = transaction |
| 143 | + @database = transaction.database |
| 144 | + |
| 145 | + super(result) |
| 146 | + end |
| 147 | + |
| 148 | + include Enumerable |
| 149 | + |
| 150 | + # Get a row from the result. |
| 151 | + # |
| 152 | + # @param index [Integer] the index for the row |
| 153 | + # |
| 154 | + # @return [Row] |
| 155 | + def [](index) |
| 156 | + if index < 0 |
| 157 | + index += length |
| 158 | + end |
| 159 | + |
| 160 | + unless index < 0 || index >= length |
| 161 | + Row.new(`#@native.rows.item(index)`) |
| 162 | + end |
| 163 | + end |
| 164 | + |
| 165 | + # Enumerate over the rows. |
| 166 | + # |
| 167 | + # @yieldparam row [Row] |
| 168 | + # |
| 169 | + # @return [self] |
| 170 | + def each(&block) |
| 171 | + return enum_for :each unless block |
| 172 | + |
| 173 | + %x{ |
| 174 | + for (var i = 0, length = #@native.rows.length; i < length; i++) { |
| 175 | + #{block.call(self[`i`])}; |
| 176 | + } |
| 177 | + } |
| 178 | + |
| 179 | + self |
| 180 | + end |
| 181 | + |
| 182 | + # @!attribute [r] length |
| 183 | + # @return [Integer] number of rows in the result |
| 184 | + def length |
| 185 | + `#@native.rows.length` |
| 186 | + end |
| 187 | + |
| 188 | + # @!attribute [r] affected |
| 189 | + # @return [Integer] number of affected rows |
| 190 | + alias_native :affected, :rowsAffected |
| 191 | + end |
| 192 | +end |
| 193 | + |
| 194 | +end; end |
0 commit comments