summaryrefslogtreecommitdiffstats
path: root/sql/src/main/java/SQLite/JDBC2y/JDBCConnection.java
blob: 20c98e3662a8cabcd3f00aaaeed28813ac7f14fc (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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
package SQLite.JDBC2y;

import java.sql.*;
import java.util.*;

public class JDBCConnection
    implements java.sql.Connection, SQLite.BusyHandler {

    /**
     * Open database.
     */
    protected DatabaseX db;

    /**
     * Database URL.
     */
    protected String url;

    /**
     * Character encoding.
     */
    protected String enc;

    /**
     * Autocommit flag, true means autocommit.
     */
    protected boolean autocommit = true;

    /**
     * In-transaction flag.
     * Can be true only when autocommit false.
     */
    protected boolean intrans = false;

    /**
     * Timeout for Database.exec()
     */
    protected int timeout = 1000000;

    /**
     * File name of database.
     */
    private String dbfile = null;

    /**
     * Reference to meta data or null.
     */
    private JDBCDatabaseMetaData meta = null;

    /**
     * Base time value for timeout handling.
     */
    private long t0;

    /**
     * Database in readonly mode.
     */
    private boolean readonly = false;


    private boolean busy0(DatabaseX db, int count) {
    if (count <= 1) {
        t0 = System.currentTimeMillis();
    }
    if (db != null) {
        long t1 = System.currentTimeMillis();
        if (t1 - t0 > timeout) {
        return false;
        }
        db.wait(100);
        return true;
    }
    return false;
    }

    public boolean busy(String table, int count) {
    return busy0(db, count);
    }

    protected boolean busy3(DatabaseX db, int count) {
    if (count <= 1) {
        t0 = System.currentTimeMillis();
    }
    if (db != null) {
        long t1 = System.currentTimeMillis();
        if (t1 - t0 > timeout) {
        return false;
        }
        return true;
    }
    return false;
    }

    private DatabaseX open(boolean readonly) throws SQLException {
    DatabaseX db = null;
    try {
        db = new DatabaseX();
        db.open(dbfile, readonly ? 0444 : 0644);
        db.set_encoding(enc);
    } catch (SQLite.Exception e) {
        throw new SQLException(e.toString());
    }
    int loop = 0;
    while (true) {
        try {
        db.exec("PRAGMA short_column_names = off;", null);
        db.exec("PRAGMA full_column_names = on;", null);
        db.exec("PRAGMA empty_result_callbacks = on;", null);
        if (SQLite.Database.version().compareTo("2.6.0") >= 0) {
            db.exec("PRAGMA show_datatypes = on;", null);
        }
        } catch (SQLite.Exception e) {
        if (db.last_error() != SQLite.Constants.SQLITE_BUSY ||
            !busy0(db, ++loop)) {
            try {
            db.close();
            } catch (SQLite.Exception ee) {
            }
            throw new SQLException(e.toString());
        }
        continue;
        }
        break;
    }
    return db;
    }

    public JDBCConnection(String url, String enc) throws SQLException {
    if (url.startsWith("sqlite:/")) {
        dbfile = url.substring(8);
    } else if (url.startsWith("jdbc:sqlite:/")) {
        dbfile = url.substring(13);
    } else {
        throw new SQLException("unsupported url");
    }
    this.url = url;
    this.enc = enc;
    try {
        db = open(readonly);
        db.busy_handler(this);
    } catch (SQLException e) {
        if (db != null) {
        try {
            db.close();
        } catch (SQLite.Exception ee) {
        }
        }
        throw e;
    }
    }

    /* non-standard */
    public SQLite.Database getSQLiteDatabase() {
    return (SQLite.Database) db;
    }
  
    public Statement createStatement() {
    JDBCStatement s = new JDBCStatement(this);
    return s;
    }
  
    public Statement createStatement(int resultSetType,
                     int resultSetConcurrency)
    throws SQLException {
    JDBCStatement s = new JDBCStatement(this);
    return s;
    }
    
    public DatabaseMetaData getMetaData() throws SQLException {
    if (meta == null) {
        meta = new JDBCDatabaseMetaData(this);
    }
    return meta;
    }

    public void close() throws SQLException {
    try {
        rollback();
    } catch (SQLException e) {
        /* ignored */
    }
    intrans = false;
    if (db != null) {
        try {
        db.close();
        db = null;
        } catch (SQLite.Exception e) {
        throw new SQLException(e.toString());
        }
    }
    }

    public boolean isClosed() throws SQLException {
    return db == null;
    }

    public boolean isReadOnly() throws SQLException {
    return readonly;
    }

    public void clearWarnings() throws SQLException {
    }

    public void commit() throws SQLException {
    if (db == null) {
        throw new SQLException("stale connection");
    }
    if (!intrans) {
        return;
    }
    try {
        db.exec("COMMIT", null);
        intrans = false;
    } catch (SQLite.Exception e) {
        throw new SQLException(e.toString());
    }
    }

    public boolean getAutoCommit() throws SQLException {
    return autocommit;
    }

    public String getCatalog() throws SQLException {
    return null;
    }

    public int getTransactionIsolation() throws SQLException {
    return TRANSACTION_SERIALIZABLE;
    }

    public SQLWarning getWarnings() throws SQLException {
    return null;
    }

    public String nativeSQL(String sql) throws SQLException {
    throw new SQLException("not supported");
    }

    public CallableStatement prepareCall(String sql) throws SQLException {
    throw new SQLException("not supported");
    }

    public CallableStatement prepareCall(String sql, int x, int y)
    throws SQLException {
    throw new SQLException("not supported");
    }

    public PreparedStatement prepareStatement(String sql) throws SQLException {
    JDBCPreparedStatement s = new JDBCPreparedStatement(this, sql);
    return s;
    }

    public PreparedStatement prepareStatement(String sql, int resultSetType,
                          int resultSetConcurrency)
    throws SQLException {
    JDBCPreparedStatement s = new JDBCPreparedStatement(this, sql);
    return s;
    }

    public void rollback() throws SQLException {
    if (db == null) {
        throw new SQLException("stale connection");
    }
    if (!intrans) {
        return;
    }
    try {
        db.exec("ROLLBACK", null);
        intrans = false;
    } catch (SQLite.Exception e) {
        throw new SQLException(e.toString());
    }
    }

    public void setAutoCommit(boolean ac) throws SQLException {
    if (ac && intrans && db != null) {
        try {
        db.exec("ROLLBACK", null);
        } catch (SQLite.Exception e) {
        throw new SQLException(e.toString());
        }
    }
    intrans = false;
    autocommit = ac;
    }

    public void setCatalog(String catalog) throws SQLException {
    }

    public void setReadOnly(boolean ro) throws SQLException {
    if (intrans) {
        throw new SQLException("incomplete transaction");
    }
    if (ro != readonly) {
        DatabaseX db = null;
        try {
        db = open(ro);
        this.db.close();
        this.db = db;
        db = null;
        readonly = ro;
        } catch (SQLException e) {
        throw e;
        } catch (SQLite.Exception ee) {
        if (db != null) {
            try {
            db.close();
            } catch (SQLite.Exception eee) {
            }
        }
        throw new SQLException(ee.toString());
        }
    }
    }

    public void setTransactionIsolation(int level) throws SQLException {
    if (level != TRANSACTION_SERIALIZABLE) {
        throw new SQLException("not supported");
    }
    }

    public java.util.Map<String, Class<?>> getTypeMap() throws SQLException {
    throw new SQLException("not supported");
    }

    public void setTypeMap(java.util.Map map) throws SQLException {
    throw new SQLException("not supported");
    }
  
    public int getHoldability() throws SQLException {
    return ResultSet.HOLD_CURSORS_OVER_COMMIT;
    }

    public void setHoldability(int holdability) throws SQLException {
    if (holdability == ResultSet.HOLD_CURSORS_OVER_COMMIT) {
        return;
    }
    throw new SQLException("not supported");
    }

    public Savepoint setSavepoint() throws SQLException {
    throw new SQLException("not supported");
    }

    public Savepoint setSavepoint(String name) throws SQLException {
    throw new SQLException("not supported");
    }

    public void rollback(Savepoint x) throws SQLException {
    throw new SQLException("not supported");
    }

    public void releaseSavepoint(Savepoint x) throws SQLException {
    throw new SQLException("not supported");
    }

    public Statement createStatement(int resultSetType,
                     int resultSetConcurrency,
                     int resultSetHoldability)
    throws SQLException {
    if (resultSetHoldability != ResultSet.HOLD_CURSORS_OVER_COMMIT) {
        throw new SQLException("not supported");
    }
    return createStatement(resultSetType, resultSetConcurrency);
    }

    public PreparedStatement prepareStatement(String sql, int resultSetType,
                          int resultSetConcurrency,
                          int resultSetHoldability)
    throws SQLException {
    if (resultSetHoldability != ResultSet.HOLD_CURSORS_OVER_COMMIT) {
        throw new SQLException("not supported");
    }
    return prepareStatement(sql, resultSetType, resultSetConcurrency);
    }

    public CallableStatement prepareCall(String sql, int x, int y, int z)
    throws SQLException {
    throw new SQLException("not supported");
    }

    public PreparedStatement prepareStatement(String sql, int autokeys)
    throws SQLException {
    if (autokeys != Statement.NO_GENERATED_KEYS) {
        throw new SQLException("not supported");
    }
    return prepareStatement(sql);
    }

    public PreparedStatement prepareStatement(String sql, int colIndexes[])
    throws SQLException {
    throw new SQLException("not supported");
    }

    public PreparedStatement prepareStatement(String sql, String columns[])
    throws SQLException {
    throw new SQLException("not supported");
    }

}

class DatabaseX extends SQLite.Database {

    static Object lock = new Object();

    public DatabaseX() {
    super();
    }

    void wait(int ms) {
    try {
        synchronized (lock) {
        lock.wait(ms);
        }
    } catch (java.lang.Exception e) {
    }
    }

    public void exec(String sql, SQLite.Callback cb)
    throws SQLite.Exception {
    super.exec(sql, cb);
    synchronized (lock) {
        lock.notifyAll();
    }
    }

    public void exec(String sql, SQLite.Callback cb, String args[])
    throws SQLite.Exception {
    super.exec(sql, cb, args);
    synchronized (lock) {
        lock.notifyAll();
    }
    }

    public SQLite.TableResult get_table(String sql, String args[])
    throws SQLite.Exception {
    SQLite.TableResult ret = super.get_table(sql, args);
    synchronized (lock) {
        lock.notifyAll();
    }
    return ret;
    }

    public void get_table(String sql, String args[], SQLite.TableResult tbl)
    throws SQLite.Exception {
    super.get_table(sql, args, tbl);
    synchronized (lock) {
        lock.notifyAll();
    }
    }

}