-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSQLiteConnector.java
More file actions
224 lines (187 loc) · 7.24 KB
/
SQLiteConnector.java
File metadata and controls
224 lines (187 loc) · 7.24 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
package com.gmail.mezymc.stats.database;
import com.gmail.mezymc.stats.GameMode;
import com.gmail.mezymc.stats.StatType;
import org.apache.commons.lang.Validate;
import org.bukkit.Bukkit;
import java.io.File;
import java.io.IOException;
import java.sql.*;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.logging.Level;
import static com.gmail.mezymc.stats.UhcStats.getPlugin;
public class SQLiteConnector implements DatabaseConnector {
private Connection connection;
public SQLiteConnector() {
connection = null;
}
@Override
public List<Position> getTop10(StatType statType, GameMode gameMode) {
try {
Connection connection = getSqlConnection();
Statement statement = connection.createStatement();
ResultSet resultSet = statement.executeQuery("SELECT `id`, `" + statType.getColumnName() + "` FROM `" + gameMode.getTableName() + "` ORDER BY `" + statType.getColumnName() + "` DESC LIMIT 10");
List<Position> positions = new ArrayList<>();
int pos = 1;
while (resultSet.next()) {
Position position = new Position(
pos,
resultSet.getString("id"),
resultSet.getInt(statType.getColumnName())
);
positions.add(position);
pos++;
}
resultSet.close();
statement.close();
return positions;
} catch (SQLException ex) {
ex.printStackTrace();
return new ArrayList<>();
}
}
@Override
public boolean doesTableExists(String tableName) {
Connection connection;
Statement statement;
try {
connection = getSqlConnection();
statement = connection.createStatement();
} catch (SQLException ex) {
ex.printStackTrace();
throw new RuntimeException("Failed to create statement!");
}
try {
statement.executeQuery("SELECT 1 FROM `" + tableName + "` LIMIT 1;").close();
statement.close();
return true;
} catch (SQLException ex) {
return false;
}
}
@Override
public void createTable(String name, DatabaseColumn... databaseColumns) {
StringBuilder sb = new StringBuilder("CREATE TABLE `" + name + "` (");
boolean first = true;
for (DatabaseColumn databaseColumn : databaseColumns) {
if (first) {
first = false;
} else {
sb.append(", ");
}
sb.append(databaseColumn.toString());
}
sb.append(");");
try {
Connection connection = getSqlConnection();
Statement statement = connection.createStatement();
statement.execute(sb.toString());
statement.close();
} catch (SQLException ex) {
Bukkit.getLogger().warning("[UhcStats] Failed to create table!");
ex.printStackTrace();
}
}
@Override
public void pushStats(String playerId, GameMode gameMode, Map<StatType, Integer> stats) {
try {
Connection connection = getSqlConnection();
Statement statement = connection.createStatement();
for (StatType statType : stats.keySet()) {
statement.executeUpdate(
"UPDATE `" + gameMode.getTableName() + "` SET `" + statType.getColumnName() + "`=" + stats.get(statType) + " WHERE `id`='" + playerId + "'"
);
}
statement.close();
} catch (SQLException ex) {
Bukkit.getLogger().warning("[UhcStats] Failed to push stats for: " + playerId);
ex.printStackTrace();
}
}
@Override
public Map<StatType, Integer> loadStats(String playerId, GameMode gameMode) {
Map<StatType, Integer> stats = getEmptyStatMap();
try {
Connection connection = getSqlConnection();
Statement statement = connection.createStatement();
ResultSet result = statement.executeQuery("SELECT * FROM `" + gameMode.getTableName() + "` WHERE `id`='" + playerId + "'");
if (result.next()) {
// collect stats
for (StatType statType : StatType.values()) {
stats.put(statType, result.getInt(statType.getColumnName()));
}
} else {
// Player not found, insert player to table.
insertPlayerToTable(connection, playerId, gameMode);
}
result.close();
statement.close();
} catch (SQLException ex) {
ex.printStackTrace();
}
return stats;
}
@Override
public boolean checkConnection() {
try {
getSqlConnection();
return true;
} catch (SQLException ex) {
ex.printStackTrace();
return false;
}
}
private Connection getSqlConnection() throws SQLException {
Validate.isTrue(!Bukkit.isPrimaryThread(), "You may only open an connection to the database on a asynchronous thread!");
// Open connection to local SQLite database "database.db"
File dataFile = new File(getPlugin().getDataFolder(), "database.db");
if (!dataFile.exists()) {
try {
dataFile.createNewFile();
} catch (IOException e) {
Bukkit.getLogger().log(Level.SEVERE, "File write error: database.db");
}
}
try {
if (connection != null && !connection.isClosed()) {
return connection;
}
Class.forName("org.sqlite.JDBC");
connection = DriverManager.getConnection("jdbc:sqlite:" + dataFile);
return connection;
} catch (SQLException ex) {
Bukkit.getLogger().log(Level.SEVERE, "SQLite exception on initialize", ex);
} catch (ClassNotFoundException ex) {
Bukkit.getLogger().log(Level.SEVERE, "You need the SQLite JBDC library.");
}
return null;
}
private void insertPlayerToTable(Connection connection, String playerId, GameMode gameMode) {
try {
StringBuilder sb = new StringBuilder("INSERT INTO `" + gameMode.getTableName() + "` (`id`");
for (StatType statType : StatType.values()) {
sb.append(", `" + statType.getColumnName() + "`");
}
sb.append(") VALUES ('" + playerId + "'");
for (int i = 0; i < StatType.values().length; i++) {
sb.append(", 0");
}
sb.append(")");
Statement statement = connection.createStatement();
statement.execute(sb.toString());
statement.close();
} catch (SQLException ex) {
Bukkit.getLogger().warning("[UhcStats] Failed to update stats for: " + playerId);
ex.printStackTrace();
}
}
private Map<StatType, Integer> getEmptyStatMap() {
Map<StatType, Integer> stats = new HashMap<>();
for (StatType statType : StatType.values()) {
stats.put(statType, 0);
}
return stats;
}
}