-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPostgresql.java
More file actions
executable file
·369 lines (304 loc) · 9.54 KB
/
Postgresql.java
File metadata and controls
executable file
·369 lines (304 loc) · 9.54 KB
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
package com.iteracja.database;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Properties;
public class Postgresql implements DatabaseConnector {
private String host;
private int port;
private String username;
private String password;
private String database;
private Connection connect;
private int timeout;
private LinkedList<QueryData> query = new LinkedList<QueryData>();
private HashMap<Integer, QueryResult> results = new HashMap<Integer, QueryResult>();
private int maxQuery = 0;
private ArrayList<DatabaseListener> listener = new ArrayList<DatabaseListener>();
private int reconnectCountQuery;
protected int countQuery;
protected boolean forceQuery;
/**
* Ustawienie parametrów do połączenia
* @param host adres bazy
* @param port port bazy
* @param username nazwa użytkownika
* @param password hasło
* @param database nazwa bazy
*/
public Postgresql(String host, int port, String username, String password, String database) {
this.host = host;
this.port = port;
this.username = username;
this.password = password;
this.database = database;
}
/**
* Połączenie z bazą
* @param timeout maksymalny czas na wykonanie sql. jeżeli czas minie to rozłącza bazę
* @param reconnectCountQuery co ile zapytań ma rozłączyć i połączyć ponownie z bazą w celu zwolnienia bufora
* @throws SQLException problem z połączeniem
*/
public void connect(int timeout, int reconnectCountQuery) throws SQLException {
this.timeout = timeout;
this.reconnectCountQuery = reconnectCountQuery;
try {
if (connect != null && !connect.isClosed())
throw new DatabaseConnectException("Dabase is connected.");
String url = "jdbc:postgresql://" + host + ":" + port + (database == null ? "" : "/" + database);
Properties prop = new Properties();
if (username != null)
prop.setProperty("user", username);
if (password != null)
prop.setProperty("password", password);
if (timeout > 0)
prop.setProperty("socketTimeout", String.valueOf(timeout));
this.connect = DriverManager.getConnection(url, prop);
countQuery = 0;
stack();
// wywołanie listenera dla akcji
for (DatabaseListener currentListener : listener.toArray(new DatabaseListener[listener.size()])) {
try {
currentListener.connected(this);
} catch (Exception e) {
for (DatabaseListener currentListenerError : listener.toArray(new DatabaseListener[listener.size()])) {
currentListenerError.error(e);
}
}
}
} catch (Exception e) {
for (DatabaseListener currentListenerError : listener.toArray(new DatabaseListener[listener.size()])) {
currentListenerError.error(e);
}
throw new SQLException(e.getMessage());
}
}
/**
* Dodanie listenera do obsługi zadań pobocznych
* @param listener instancja listenera
*/
public void addDatabaseListener(DatabaseListener listener) {
this.listener.add(listener);
}
/**
* Sprawdzenie czy jest połączenie z bazą
* @return prawda jeżeli tak, fałsz jeżeli nie
*/
public boolean isConnected() {
try {
if (connect != null && !connect.isClosed())
return true;
else
return false;
} catch (Exception e) {
return false;
}
}
/**
* Wykonanie zapytania bez zwracania rekordów
* @param sql zapytanie
* @throws SQLException problem z bazą lub błąd zapytania
*/
public void execute(String sql) throws SQLException {
if (!forceQuery && !isConnected())
throw new SQLException("Database is disconnected");
int index = 0;
synchronized (query) {
index = maxQuery++;
query.add(new QueryData(index, sql, false));
query.notify();
}
QueryResult qr = null;
synchronized (results) {
while (!results.containsKey(index)) {
try {
results.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
qr = results.get(index);
results.remove(index);
}
if (!qr.isSuccess())
throw new SQLException(qr.getException());
}
/**
* Wykonanie zapytania ze zwróconymi rekordami
* @param sql zapytanie
* @throws SQLException problem z bazą lub błąd zapytania
* @return kontener danych
*/
public QueryResult executeQuery(String sql) throws SQLException {
if (!forceQuery && !isConnected())
throw new SQLException("Database is disconnected");
int index = 0;
synchronized (query) {
index = maxQuery++;
query.add(new QueryData(index, sql, true));
query.notify();
}
QueryResult qr = null;
synchronized (results) {
while (!results.containsKey(index)) {
try {
results.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
qr = results.get(index);
results.remove(index);
}
if (!qr.isSuccess())
throw new SQLException(qr.getException());
return qr;
}
/**
* Rozłączenie z bazą
* @throws SQLException nie można rozłaczyć z bazą, np nie jest połączona
*/
public void disconnect() throws SQLException {
connect.close();
}
/**
* Ponowne połączenie z bazą w momencie kiedy rozłączy bez generowania eventu.
* @param reconnectTime co ile czasu ma ponownie próbować połączyć
* @param events flaga sprawdzająca czy ma generować eventy o połączeniu
* @throws InterruptedException zły zakres dla reconnectTime
*/
public void reconnect(int reconnectTime, boolean events) throws InterruptedException {
try {
if (connect != null && !connect.isClosed())
throw new DatabaseConnectException("Dabase is connected.");
String url = "jdbc:postgresql://" + host + ":" + port + (database == null ? "" : "/" + database);
Properties prop = new Properties();
if (username != null)
prop.setProperty("user", username);
if (password != null)
prop.setProperty("password", password);
if (timeout > 0)
prop.setProperty("socketTimeout", String.valueOf(timeout));
this.connect = DriverManager.getConnection(url, prop);
countQuery = 0;
// wywołanie listenera dla akcji
if (events) {
for (DatabaseListener currentListener : listener.toArray(new DatabaseListener[listener.size()])) {
try {
currentListener.connected(this);
} catch (Exception e) {
for (DatabaseListener currentListenerError : listener.toArray(new DatabaseListener[listener.size()])) {
currentListenerError.error(e);
}
}
}
}
} catch (Exception e) {
for (DatabaseListener currentListenerError : listener.toArray(new DatabaseListener[listener.size()])) {
currentListenerError.error(e);
}
Thread.sleep(reconnectTime);
reconnect(reconnectTime);
}
}
/**
* Ponowne połączenie z bazą w momencie kiedy rozłączy.
* @param reconnectTime co ile czasu ma ponownie próbować połączyć
* @throws InterruptedException zły zakres dla reconnectTime
*/
public void reconnect(int reconnectTime) throws InterruptedException {
reconnect(reconnectTime, true);
}
private QueryData getQueryData() {
QueryData qd = null;
synchronized (query) {
while (true) {
qd = query.poll();
if (qd == null) {
try {
query.wait();
} catch (InterruptedException e) {
e.printStackTrace();
}
} else
break;
}
}
return qd;
}
private void stack() {
new Thread(new Runnable() {
@Override
public void run() {
while (true) {
QueryData qd = getQueryData();
QueryResult qr = new QueryResult();
try {
// sprawdzenie czy zrobić reconnect aby zwolnić bufor
if (countQuery++ > reconnectCountQuery) {
forceQuery = true;
try {
disconnect(); // TODO poprawić wrzucać w tej metodzie info o rozłączeniu z bazą
} catch (Exception e) {
for (DatabaseListener currentListenerError : listener.toArray(new DatabaseListener[listener.size()])) {
try {
currentListenerError.error(e);
} catch (Exception e1) {
}
}
}
try {
reconnect(10000, false);
} catch (Exception e) {
for (DatabaseListener currentListenerError : listener.toArray(new DatabaseListener[listener.size()])) {
try {
currentListenerError.error(e);
} catch (Exception e1) {
}
}
}
forceQuery = false;
}
Statement statement = connect.createStatement();
qr.setStatement(statement);
if (qd.isRecords()) {
ResultSet res = statement.executeQuery(qd.getSql());
qr.setResult(res);
} else{
statement.execute(qd.getSql());
statement.close();
}
} catch (SQLException e) {
qr.setException(e);
// uruchomienie listenera z błędem sql
for (DatabaseListener currentListenerError : listener.toArray(new DatabaseListener[listener.size()])) {
try {
currentListenerError.error(e);
} catch (Exception e1) {
}
}
// jeżeli jest to rozlączenie bazy to wygeneruj kolejny wyjątek o rozłączeniu
if (e.getMessage().substring(0, 5).equals("FATAL") || e.getMessage().contains("Wystąpił błąd We/Wy podczas wysyłania do serwera")) {
for (DatabaseListener currentListenerError : listener.toArray(new DatabaseListener[listener.size()])) {
try {
currentListenerError.interuptedConnection(Postgresql.this);
} catch (Exception e1) {
}
}
}
}
synchronized (results) {
results.put(qd.getIndex(), qr);
results.notifyAll();
}
}
}
}).start();
}
}